projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2fa9dc2
)
(backquote-unquote-symbol, backquote-splice-symbol):
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 23 Aug 2007 18:39:20 +0000
(18:39 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 23 Aug 2007 18:39:20 +0000
(18:39 +0000)
Backslash the , and ,@ which are not new-style unquotes.
lisp/emacs-lisp/backquote.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/backquote.el
b/lisp/emacs-lisp/backquote.el
index 8b966f516260c011dc3f228d0806e8d5de6995c8..a2a929d96011c4966e88762afe8b1fd16c4e9929 100644
(file)
--- a/
lisp/emacs-lisp/backquote.el
+++ b/
lisp/emacs-lisp/backquote.el
@@
-85,10
+85,10
@@
For example (backquote-list* 'a 'b 'c) => (a b . c)"
(defconst backquote-backquote-symbol '\`
"Symbol used to represent a backquote or nested backquote.")
-(defconst backquote-unquote-symbol ',
+(defconst backquote-unquote-symbol '
\
,
"Symbol used to represent an unquote inside a backquote.")
-(defconst backquote-splice-symbol ',@
+(defconst backquote-splice-symbol '
\
,@
"Symbol used to represent a splice inside a backquote.")
;;;###autoload